ImagePropertyPixels
Type
operator
Summary
The pixel data of an image.
Syntax
the pixels of <mImage>
Description
The raw ARGB pixel data of the image.
Parameters
Name | Type | Description |
---|---|---|
mImage | An expression which evaluates to an image. |
Examples
// Load an image from a file
variable tImage as Image
put image from file "images/logo.png" into tImage
// Get the pixels of the image
variable tPixelData as Data
put the pixels of tImage into tPixelData